Maybe a KFlop C Program like this:
#include "KMotionDef.h"
main()
{
double DistToMove = 10000; // distance to move in counts
double TimePeriod = 4.0; // period to move one way in seconds
double TotalTime = 4.0 * 60.0; // total Time
double Vel = DistToMove/TimePeriod; // calculated Rate, cnts/sec
int i,n = (int)TotalTime/TimePeriod/2.0; // number of cycles
int Axis=0;
for (i=0; i<n; i++);
{
MoveRelAtVel(Axis,DistToMove,Vel); // move positive
while (!CheckDone(Axis)) ; // wait till done
MoveRelAtVel(Axis,-DistToMove,Vel); // move negative
while (!CheckDone(Axis)) ; // wait till done
}
}